projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
113ab30
)
picture.el no longer required.
author
Karl Heuer
<kwzh@gnu.org>
Thu, 23 Oct 1997 06:40:32 +0000
(06:40 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Thu, 23 Oct 1997 06:40:32 +0000
(06:40 +0000)
(lm-insert-at-column): Use FORCE arg of move-to-column.
lisp/emacs-lisp/lisp-mnt.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/lisp-mnt.el
b/lisp/emacs-lisp/lisp-mnt.el
index 25ec9f62c4e099204bc6d06ec33b9fcd2895f2b9..31048372d2449c5f00815099c29be965c8a1ec91 100644
(file)
--- a/
lisp/emacs-lisp/lisp-mnt.el
+++ b/
lisp/emacs-lisp/lisp-mnt.el
@@
-113,7
+113,6
@@
;;; Code:
-(require 'picture) ; provides move-to-column-force
(require 'emacsbug)
;;; Variables:
@@
-404,7
+403,7
@@
with tag `Commentary' and ends with tag `Change Log' or `History'."
(defun lm-insert-at-column (col &rest strings)
"Insert list of STRINGS, at column COL."
(if (> (current-column) col) (insert "\n"))
- (move-to-column
-force col
)
+ (move-to-column
col t
)
(apply 'insert strings))
(defun lm-verify (&optional file showok &optional verb)